home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 16
/
Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso
/
Aminet
/
comm
/
bbs
/
Cit_Src_6J12.lha
/
netlist.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-10-13
|
4KB
|
172 lines
/*
* Generate the NetLink Listing of Shared Rooms.
*/
#include "ctdl.h" /*
* header file
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <time.h>
#include <proto/exec.h>
#include <dos/dos.h>
#include <pragmas/dos_pragmas.h>
#include "exec/memory.h"
#include "exec/ports.h"
#include "exec/exec.h"
/*
* contents
*
* crashout() irrecoverable error
* main() Main controller for this program
* openFile() opens a .sys file
*/
extern rTable *roomTab; /*
* RAM index of rooms
*/
extern CONFIG cfg; /*
* A buncha variables
*/
extern FILE *netfl;
extern NetBuffer netBuf;
extern NetTable *netTab;
extern VirtualRoom *VRoomTab;
extern char VirtualInUse;
extern VirtNet *VirtNetList;
extern int thisNet,
VirtSize,
VNetSize;
FILE *netLog;
void CheckNet(int i, int roomSlot);
void CheckVirt(int TheVirt, int NetRover);
/*
* crashout()
*
* This function handles an irrecoverable error.
*/
void
crashout(str)
char *str;
{
exit(printf(str));
}
/*
* main()
*
* This is the main controller.
*/
int main(int, char **);
int k_flag;
int
main(argc, argv)
int argc;
char **argv;
{
SYS_FILE netFile;
int Index, NetRover;
cfg.weAre = UTILITY;
fprintf(stderr," Citadel Network Links List %s\n", VERSION_NAME);
if (readSysTab(FALSE, TRUE))
{
mvToHomeDisk(&cfg.homeArea);
makeSysName(netFile, "ctdlnet.sys", &cfg.netArea);
openFile(netFile, &netfl);
initNetBuf(&netBuf);
printf("\n #!netlinks %s %s\n", cfg.codeBuf + cfg.nodeName, cfg.codeBuf + cfg.nodeId);
for (Index = AIDEROOM + 1; /*
* First 3 never shared
*/
Index < MAXROOMS; Index++)
{
if (roomTab[Index].rtflags.INUSE &&
roomTab[Index].rtflags.SHARED)
{
printf(" room=%s\n", roomTab[Index].rtname);
k_flag = 0;
for( NetRover = 0; NetRover < cfg.netSize; NetRover++)
{
CheckNet(NetRover, Index);
};
printf("\n");
};
};
};
VirtInit();
if (VirtualInUse)
{
for (Index = 0; Index < VirtSize; Index++)
{
if (strLen(VRoomTab[Index].vrName) != 0)
{
printf(" room=%s", VRoomTab[Index].vrName);
k_flag = 0;
for (NetRover = 0; NetRover < cfg.netSize; NetRover++)
CheckVirt(Index, NetRover);
printf("\n");
};
};
};
printf("end_data\n");
}
/*
* CheckNet()
*
* This checks to see if the given room is shared with this node and does
* the requisite print.
*/
void CheckNet(int i, int roomSlot)
{
int j;
if (netTab[i].ntflags.in_use)
{
for (j = 0; j < SHARED_ROOMS; j++)
{
if (isSharedRoom(i, j))
{
if (netTabRoomSlot(i, j) == roomSlot &&
roomTab[roomSlot].rtgen == netGen(i, j))
{
getNet(i, &netBuf);
if( k_flag % 2 == 0 ) printf(" share=");
printf(" %s %s ", netBuf.netName, netBuf.netId);
if( k_flag % 2 == 1 ) printf("\n");
k_flag++;
return;
}
}
}
}
}
/*
* CheckVirt()
*
* This processes a virtual room.
*/
void CheckVirt(int TheVirt, int NetRover)
{
int i;
for (i = 0; i < VIRT_LIMIT; i++) {
if (VirtNetList[NetRover].VirtList[i].WhichVirt == TheVirt) {
getNet(NetRover, &netBuf);
if (netBuf.nbflags.in_use)
{
if( k_flag % 2 == 0 ) printf(" share=");
printf(" %s %s ", netBuf.netName, netBuf.netId);
if( k_flag % 2 == 1 ) printf("\n");
};
}
}
}